diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-07 16:33:15 +0100 | 
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-07 18:48:42 +0100 | 
| commit | 8efb9219116a6c665d1059d3218c9405c616e404 (patch) | |
| tree | 52189ca1e98d9268843a27520b5c7228a5aa8913 /src/pages/thematique/[slug].tsx | |
| parent | 09e0e2d1569e5098c960299746f7b8632e9b35f3 (diff) | |
chore: adjust css grid on listing pages without sidebar
Diffstat (limited to 'src/pages/thematique/[slug].tsx')
| -rw-r--r-- | src/pages/thematique/[slug].tsx | 19 | 
1 files changed, 9 insertions, 10 deletions
| diff --git a/src/pages/thematique/[slug].tsx b/src/pages/thematique/[slug].tsx index fb0eda5..72e469c 100644 --- a/src/pages/thematique/[slug].tsx +++ b/src/pages/thematique/[slug].tsx @@ -25,16 +25,15 @@ const Thematic: NextPageWithLayout<ThematicProps> = ({ thematic }) => {    return (      <article className={styles.wrapper}>        <PostHeader intro={thematic.intro} title={thematic.title} /> -      <div -        className={styles.body} -        dangerouslySetInnerHTML={{ __html: thematic.content }} -      ></div> -      {thematic.posts.length > 0 && ( -        <section className={styles.section}> -          <h2>{t`All posts in ${thematic.title}`}</h2> -          <ol className={styles.list}>{getPostsList()}</ol> -        </section> -      )} +      <div className={styles.body}> +        <div dangerouslySetInnerHTML={{ __html: thematic.content }}></div> +        {thematic.posts.length > 0 && ( +          <section className={styles.section}> +            <h2>{t`All posts in ${thematic.title}`}</h2> +            <ol className={styles.list}>{getPostsList()}</ol> +          </section> +        )} +      </div>      </article>    );  }; | 
